home *** CD-ROM | disk | FTP | other *** search
/ Ultra Gameplayers 109 / Ultra Gameplayers 109.iso / pc / media / new_ugp.dxr / 00346_SoundControl.ls < prev    next >
Encoding:
Text File  |  1998-02-10  |  207 b   |  11 lines

  1. on keyDown
  2.   set soundvol to min(max(value(the key) * 255 / 7, 0), 255)
  3.   SetVolume(soundvol)
  4. end
  5.  
  6. on SetVolume level
  7.   repeat with index = 1 to 4
  8.     set the volume of sound index to level
  9.   end repeat
  10. end
  11.